Question....



Here is an interesting JavaScript game I found on the Internet. Try it out on yourself, you'll see. 
--------------------------------------------------------------------------------
 



<!-- TWO STEPS TO INSTALL QUESTION...:

   1.  Put the designated coding into the HEAD of your HTML document
   2.  Paste the last code into the BODY of your HTML document  -->

<!-- STEP ONE: Copy this code into the HEAD of your HTML document  -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var display_text  = "Sadly, Denmark is an unlikely place "
+ "to find gray elephants and orange kangaroos!  "
+ "     There are more cool stuff like this "
+ "throughout my site!  Check 'em out!!!!!!!!!!"
var display_text; var place; var meter; 
var out = " "; var place = 50;
function scroll_text(){
for (meter = 0; meter < place; meter++){
out += " "
}
if (place >= 0)
out += display_text
else out = display_text.substring(-place,display_text.length)
document.scroll_form.field.value = out
out = " "
place--
if (place < -(display_text.length)){
place = 50
}
setTimeout('scroll_text()',100)
}
// End -->
</SCRIPT> 

<!-- STEP TWO: Paste this code into the BODY of your HTML document  -->

<BODY>

<CENTER>
<TT>Please follow the instructions below carefully.
<P>
<OL>
<LI>Think of a number between 1 and 10.<P>
<LI>Multiply the number by 9.<P>
<LI>Add the digits of your result.<P>
<LI>Subtract 5 from your new number.<P>
<LI>Find the letter that corresponds to your number, if 1 = A, 2 = B, 3 = C, etc.<P>
<LI>Think of a country that begins with your letter.<P>
<LI>Write down the name of that country.<P>
<LI>Think of an animal beginning with the second letter of your country.<P>
<LI>Think of the color of that animal.<P>
<LI>Write down the animal and its color.<P>
<LI>Think of an animal that begins with the last letter of your country.<P>
<LI>Think of a fruit that begins with the last letter of this second animal.<P>
<LI>Write down the fruit and the animal.<P>
</OL>
<P>
<P>
When you are finished, touch analyze...
<FORM name="scroll_form">
<input type="button" name="button_one" value="Analyze..." onClick="scroll_text()">
<input type="text" name="field" size="50"><p>
</form>
</CENTER>

<p><center>
<font face="arial, helvetica" size="-2">Free JavaScripts provided<br>
by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
</center><p>

<!-- Script Size:  2.16 KB  -->
